181f84adc24f40d379834cddb49965f263741023,tests/org.eclipse.xtext.xtend2.standalone.tests/xtend-gen/org/eclipse/xtext/xtend2/standalone/tests/TestBatchCompiler.java,TestBatchCompiler,onSetup,#,40

Before Change


        _batchCompiler_1.setOutputPath(_OUTPUT_DIRECTORY);
        Xtend2BatchCompiler _batchCompiler_2 = this.batchCompiler;
        _batchCompiler_2.setDeleteTempDirectory(true);
        String _OUTPUT_DIRECTORY_1 = TestBatchCompiler.OUTPUT_DIRECTORY;
        File _file = new File(_OUTPUT_DIRECTORY_1);
        _file.mkdir();
        String _OUTPUT_DIRECTORY_2 = TestBatchCompiler.OUTPUT_DIRECTORY;
        File _file_1 = new File(_OUTPUT_DIRECTORY_2);
        Files.cleanFolder(_file_1, null, true, false);
        String _OUTPUT_DIRECTORY_WITH_SPACES = TestBatchCompiler.OUTPUT_DIRECTORY_WITH_SPACES;
        File _file_2 = new File(_OUTPUT_DIRECTORY_WITH_SPACES);
        _file_2.mkdir();

After Change


        this.batchCompiler.setSourcePath(TestBatchCompiler.XTEND_SRC_DIRECTORY);
        this.batchCompiler.setOutputPath(TestBatchCompiler.OUTPUT_DIRECTORY);
        this.batchCompiler.setDeleteTempDirectory(true);
        File _file = new File(TestBatchCompiler.OUTPUT_DIRECTORY);
        _file.mkdir();
        File _file_1 = new File(TestBatchCompiler.OUTPUT_DIRECTORY);
        Files.cleanFolder(_file_1, null, true, false);
        File _file_2 = new File(TestBatchCompiler.OUTPUT_DIRECTORY_WITH_SPACES);
        _file_2.mkdir();
        File _file_3 = new File(TestBatchCompiler.OUTPUT_DIRECTORY_WITH_SPACES);